home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / A.D. Software / OOFGraph / Application Source / GraphTestApp.h < prev    next >
Text File  |  1996-06-15  |  1KB  |  39 lines

  1. // ===========================================================================
  2. //    GraphTestApp.h                    Derived heavily from the Dashboard Starter
  3. // ===========================================================================
  4.  
  5. #pragma once
  6.  
  7. #include <LApplication.h>
  8. #include "studenttest.hpp"
  9. #include "temperaturetest.hpp"
  10.  
  11. class    ColumnGraphWindow;
  12. class    BarGraphWindow;
  13. class    StackedBarGraphWindow;
  14.  
  15. class    LWindow;
  16. class    GraphTestApp : public LApplication {
  17. public:
  18.                         GraphTestApp();
  19.     virtual             ~GraphTestApp();
  20.     
  21.     virtual Boolean        ObeyCommand(CommandT inCommand, void *ioParam = nil);
  22.     virtual void        FindCommandStatus(CommandT inCommand,
  23.                             Boolean &outEnabled, Boolean &outUsesMark,
  24.                             Char16 &outMark, Str255 outName);
  25. protected:
  26.     void                DoPageSetup();
  27.     void                PrintAll();
  28.  
  29.     dbConnect_ctree     theDB;
  30.     dbStudent           Students;
  31.     dbTemperature        Temperatures;
  32.     
  33.     ColumnGraphWindow* mCWindow;
  34.     BarGraphWindow* mBWindow;
  35.     StackedBarGraphWindow* mSBWindow2;
  36.     // StackedBarGraphWindow* mSBWindow;
  37. };
  38.  
  39.